home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Demos / A.D. Software / OOFGraph / Application Source / ColumnGraphWindow.h < prev    next >
Text File  |  1996-06-13  |  710b  |  30 lines

  1. // ===========================================================================
  2. //    ColumnGraphWindow.h                    Derived heavily from the Dashboard Starter
  3. // ===========================================================================
  4.  
  5. #pragma once
  6. #include "oofColumnGraph.h"
  7. //#include "oofile.hpp"
  8. #include "CPlotPane.h"
  9.  
  10. class    LCommander;
  11. class    dbView;
  12.  
  13. class    ColumnGraphWindow {
  14. public:
  15.                         ColumnGraphWindow(LCommander*, dbView *theView, StringPtr theTitle,
  16.                                           unsigned long yAxisLength=0);
  17.     virtual             ~ColumnGraphWindow();
  18.     
  19.     void                DoPrinting();
  20.                                 
  21. protected:
  22.     LWindow*            mDisplayWindow;
  23.     CPlotPane*            PlotView;
  24.     oofColumnGraph*        mColumnGraphPtr;
  25.  
  26. public:
  27.     static void RegisterClass();
  28. };
  29.  
  30.